From fb17d2b966df0e9d15d6e4cab43a977733626704 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 3 Jul 2002 10:00:18 +0000 Subject: [PATCH] (tramp-send-eof): Fix typo. (tramp-kill-process): Likewise. --- lisp/net/tramp.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 2965c69e2c7..e2f485be518 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -4446,7 +4446,7 @@ running as USER on HOST using METHOD." (defun tramp-send-eof (multi-method method user host) "Send EOF to the remote end. -METHOD, HOST and USER specify the the connection." +METHOD, HOST and USER specify the connection." (let ((proc (get-buffer-process (tramp-get-buffer multi-method method user host)))) (unless proc @@ -4456,7 +4456,7 @@ METHOD, HOST and USER specify the the connection." (defun tramp-kill-process (multi-method method user host) "Kill the connection process used by Tramp. -MULTI-METHOD, METHOD, USER, and HOST, specify the connection." +MULTI-METHOD, METHOD, USER, and HOST specify the connection." (let ((proc (get-buffer-process (tramp-get-buffer multi-method method user host)))) (kill-process proc))) -- 2.30.2